home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
source8
/
simple.dpr
< prev
next >
Wrap
Text File
|
1995-12-22
|
163b
|
13 lines
program Simple;
uses
Forms,
Usimple in 'USIMPLE.PAS' {Form1};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.